mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-17 16:37:43 +00:00
18.0.0
This commit is contained in:
parent
ba88634442
commit
4eca106653
6 changed files with 41 additions and 6 deletions
|
|
@ -20,8 +20,8 @@ android {
|
|||
minSdkVersion 24
|
||||
targetSdkVersion 35
|
||||
compileSdk 35
|
||||
versionCode 18_00_00_0000
|
||||
versionName "18.0.0-rc.0"
|
||||
versionCode 18_00_00_9000
|
||||
versionName "18.0.0"
|
||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||
manifestPlaceholders = [
|
||||
hostName : "app.super-productivity.com",
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
- improve mobile gesture hints
|
||||
- fix migration handling integration spec
|
||||
- rename built-in Google Calendar ICAL button
|
||||
- improve initial render
|
||||
- use neutral close button in fullscreen editor
|
||||
- improve add task bar task reveal timing
|
||||
- prevent scroll-to-top when closing add-task bar on touch devices
|
||||
- hide hover controls on touch-only devices
|
||||
- save task title on mobile when tapping outside bottom panel
|
||||
- suppress persistence snack during initial preset selection
|
||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "superProductivity",
|
||||
"version": "18.0.0-rc.0",
|
||||
"version": "18.0.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "superProductivity",
|
||||
"version": "18.0.0-rc.0",
|
||||
"version": "18.0.0",
|
||||
"license": "MIT",
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "superProductivity",
|
||||
"version": "18.0.0-rc.0",
|
||||
"version": "18.0.0",
|
||||
"description": "ToDo list and Time Tracking",
|
||||
"keywords": [
|
||||
"ToDo",
|
||||
|
|
|
|||
25
src/assets/android-oauth-callback.html
Normal file
25
src/assets/android-oauth-callback.html
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta
|
||||
http-equiv="Content-Security-Policy"
|
||||
content="default-src 'none'; script-src 'unsafe-inline'"
|
||||
/>
|
||||
<title>Redirecting to Super Productivity…</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Redirecting to Super Productivity…</p>
|
||||
<script>
|
||||
(function () {
|
||||
var params = new URLSearchParams(window.location.search);
|
||||
var query = params.toString();
|
||||
var deepLink = 'com.super-productivity.app://plugin-oauth-callback';
|
||||
if (query) {
|
||||
deepLink += '?' + query;
|
||||
}
|
||||
window.location.replace(deepLink);
|
||||
})();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
// this file is automatically generated by git.version.ts script
|
||||
export const versions = {
|
||||
version: '18.0.0-rc.0',
|
||||
version: '18.0.0',
|
||||
revision: 'NO_REV',
|
||||
branch: 'NO_BRANCH',
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue