├── .gitmodules ├── LICENSE ├── assets ├── autopytoexe.jpg ├── editor.png ├── nodejs-portable.jpg ├── pack.gif └── unpack.gif ├── readme.md └── src ├── faces ├── pack.cmd └── unpack.cmd ├── scripts ├── pack.js └── unpack.js └── utils ├── node-portable ├── nodejs-portable.conf └── nodejs-portable.exe ├── pythonSrc ├── Pipfile ├── __pycache__ │ ├── main.cpython-37.pyc │ ├── program.cpython-37.pyc │ └── program.cpython-38.pyc ├── analysis.md ├── convert.py ├── header_1.md ├── main.py ├── program.py ├── readme.md ├── resources │ ├── __pycache__ │ │ ├── extractor.cpython-37.pyc │ │ ├── extractor.cpython-38.pyc │ │ ├── imageLoader.cpython-37.pyc │ │ ├── imageLoader.cpython-38.pyc │ │ ├── reader.cpython-37.pyc │ │ └── reader.cpython-38.pyc │ ├── _init_.py │ ├── extractor.py │ ├── image │ │ ├── __pycache__ │ │ │ ├── color.cpython-37.pyc │ │ │ ├── color.cpython-38.pyc │ │ │ ├── reader.cpython-37.pyc │ │ │ └── reader.cpython-38.pyc │ │ ├── _init_.py │ │ ├── color.py │ │ ├── reader.py │ │ └── writer.py │ ├── imageLoader.py │ ├── models │ │ ├── __pycache__ │ │ │ ├── image.cpython-37.pyc │ │ │ └── image.cpython-38.pyc │ │ ├── _init_.py │ │ └── image.py │ ├── reader.py │ └── writer.py ├── scripts │ ├── test_extract.sh │ ├── test_extract_packed.sh │ └── test_repack.sh └── watchFaceParser │ ├── __pycache__ │ ├── config.cpython-37.pyc │ ├── config.cpython-38.pyc │ ├── previewGenerator.cpython-37.pyc │ ├── previewGenerator.cpython-38.pyc │ ├── reader.cpython-37.pyc │ ├── reader.cpython-38.pyc │ ├── watchFace.cpython-37.pyc │ ├── watchFace.cpython-38.pyc │ ├── writer.cpython-37.pyc │ └── writer.cpython-38.pyc │ ├── _init_.py │ ├── attributes │ ├── __pycache__ │ │ ├── parameterIdAttribute.cpython-37.pyc │ │ └── parameterIdAttribute.cpython-38.pyc │ └── parameterIdAttribute.py │ ├── config.py │ ├── elements │ ├── __pycache__ │ │ ├── activity.cpython-37.pyc │ │ ├── activity.cpython-38.pyc │ │ ├── analogDialFace.cpython-37.pyc │ │ ├── analogDialFace.cpython-38.pyc │ │ ├── background.cpython-37.pyc │ │ ├── background.cpython-38.pyc │ │ ├── battery.cpython-37.pyc │ │ ├── battery.cpython-38.pyc │ │ ├── date.cpython-37.pyc │ │ ├── date.cpython-38.pyc │ │ ├── daysProgress.cpython-37.pyc │ │ ├── daysProgress.cpython-38.pyc │ │ ├── status.cpython-37.pyc │ │ ├── status.cpython-38.pyc │ │ ├── stepsProgress.cpython-37.pyc │ │ ├── stepsProgress.cpython-38.pyc │ │ ├── time.cpython-37.pyc │ │ ├── time.cpython-38.pyc │ │ ├── unknownType14.cpython-37.pyc │ │ ├── unknownType14.cpython-38.pyc │ │ ├── weather.cpython-37.pyc │ │ └── weather.cpython-38.pyc │ ├── activity.py │ ├── activityElements │ │ ├── __pycache__ │ │ │ ├── distance.cpython-37.pyc │ │ │ ├── distance.cpython-38.pyc │ │ │ ├── formattedNumber.cpython-37.pyc │ │ │ └── formattedNumber.cpython-38.pyc │ │ ├── distance.py │ │ └── formattedNumber.py │ ├── analogDialFace.py │ ├── analogDialFaceElements │ │ ├── __pycache__ │ │ │ ├── clockHand.cpython-37.pyc │ │ │ └── clockHand.cpython-38.pyc │ │ └── clockHand.py │ ├── background.py │ ├── basicElements │ │ ├── __pycache__ │ │ │ ├── circleScale.cpython-37.pyc │ │ │ ├── circleScale.cpython-38.pyc │ │ │ ├── coordinates.cpython-37.pyc │ │ │ ├── coordinates.cpython-38.pyc │ │ │ ├── image.cpython-37.pyc │ │ │ ├── image.cpython-38.pyc │ │ │ ├── imageSet.cpython-37.pyc │ │ │ ├── imageSet.cpython-38.pyc │ │ │ ├── number.cpython-37.pyc │ │ │ ├── number.cpython-38.pyc │ │ │ ├── sector.cpython-37.pyc │ │ │ ├── sector.cpython-38.pyc │ │ │ ├── unknownType.cpython-37.pyc │ │ │ ├── unknownType.cpython-38.pyc │ │ │ ├── unknownType14d6.cpython-37.pyc │ │ │ └── unknownType14d6.cpython-38.pyc │ │ ├── circleScale.py │ │ ├── coordinates.py │ │ ├── image.py │ │ ├── imageSet.py │ │ ├── number.py │ │ ├── sector.py │ │ ├── unknownType.py │ │ └── unknownType14d6.py │ ├── battery.py │ ├── batteryElements │ │ ├── __pycache__ │ │ │ ├── iconSet.cpython-37.pyc │ │ │ ├── iconSet.cpython-38.pyc │ │ │ ├── unknownType4.cpython-37.pyc │ │ │ └── unknownType4.cpython-38.pyc │ │ ├── iconSet.py │ │ └── unknownType4.py │ ├── date.py │ ├── dateElements │ │ ├── __pycache__ │ │ │ ├── dateUnknown3.cpython-37.pyc │ │ │ ├── dateUnknown3.cpython-38.pyc │ │ │ ├── monthAndDay.cpython-37.pyc │ │ │ ├── monthAndDay.cpython-38.pyc │ │ │ ├── oneLineMonthAndDay.cpython-37.pyc │ │ │ ├── oneLineMonthAndDay.cpython-38.pyc │ │ │ ├── oneLineYear.cpython-37.pyc │ │ │ ├── oneLineYear.cpython-38.pyc │ │ │ ├── separateMonthAndDay.cpython-37.pyc │ │ │ ├── separateMonthAndDay.cpython-38.pyc │ │ │ ├── year.cpython-37.pyc │ │ │ └── year.cpython-38.pyc │ │ ├── dateUnknown3.py │ │ ├── monthAndDay.py │ │ ├── oneLineMonthAndDay.py │ │ ├── oneLineYear.py │ │ ├── separateMonthAndDay.py │ │ └── year.py │ ├── daysProgress.py │ ├── status.py │ ├── statusElements │ │ ├── __pycache__ │ │ │ ├── switch.cpython-37.pyc │ │ │ └── switch.cpython-38.pyc │ │ └── switch.py │ ├── stepsProgress.py │ ├── time.py │ ├── timeElements │ │ ├── __pycache__ │ │ │ ├── amPm.cpython-37.pyc │ │ │ ├── amPm.cpython-38.pyc │ │ │ ├── pm.cpython-37.pyc │ │ │ ├── pm.cpython-38.pyc │ │ │ ├── twoDigits.cpython-37.pyc │ │ │ └── twoDigits.cpython-38.pyc │ │ ├── amPm.py │ │ ├── pm.py │ │ └── twoDigits.py │ ├── unknownType14.py │ ├── weather.py │ └── weatherElements │ │ ├── __pycache__ │ │ ├── icon.cpython-37.pyc │ │ ├── icon.cpython-38.pyc │ │ ├── separate.cpython-37.pyc │ │ ├── separate.cpython-38.pyc │ │ ├── symbols.cpython-37.pyc │ │ ├── symbols.cpython-38.pyc │ │ ├── temperature.cpython-37.pyc │ │ ├── temperature.cpython-38.pyc │ │ ├── today.cpython-37.pyc │ │ └── today.cpython-38.pyc │ │ ├── icon.py │ │ ├── separate.py │ │ ├── symbols.py │ │ ├── temperature.py │ │ └── today.py │ ├── helpers │ ├── __pycache__ │ │ ├── drawerHelper.cpython-37.pyc │ │ └── drawerHelper.cpython-38.pyc │ └── drawerHelper.py │ ├── models │ ├── __pycache__ │ │ ├── color.cpython-37.pyc │ │ ├── color.cpython-38.pyc │ │ ├── fileDescriptor.cpython-37.pyc │ │ ├── fileDescriptor.cpython-38.pyc │ │ ├── header.cpython-37.pyc │ │ ├── header.cpython-38.pyc │ │ ├── parameter.cpython-37.pyc │ │ ├── parameter.cpython-38.pyc │ │ ├── parameterFlags.cpython-37.pyc │ │ ├── parameterFlags.cpython-38.pyc │ │ ├── textAlignment.cpython-37.pyc │ │ ├── textAlignment.cpython-38.pyc │ │ ├── watchState.cpython-37.pyc │ │ └── watchState.cpython-38.pyc │ ├── color.py │ ├── elements │ │ ├── __pycache__ │ │ │ ├── activityElement.cpython-37.pyc │ │ │ ├── activityElement.cpython-38.pyc │ │ │ ├── backgroundElement.cpython-37.pyc │ │ │ ├── backgroundElement.cpython-38.pyc │ │ │ ├── batteryElement.cpython-37.pyc │ │ │ ├── batteryElement.cpython-38.pyc │ │ │ ├── dateElement.cpython-37.pyc │ │ │ ├── dateElement.cpython-38.pyc │ │ │ ├── statusElement.cpython-37.pyc │ │ │ ├── statusElement.cpython-38.pyc │ │ │ ├── timeElement.cpython-37.pyc │ │ │ ├── timeElement.cpython-38.pyc │ │ │ ├── watchFace.cpython-37.pyc │ │ │ └── watchFace.cpython-38.pyc │ │ ├── _init_.py │ │ ├── activity │ │ │ ├── __pycache__ │ │ │ │ ├── caloriesElement.cpython-37.pyc │ │ │ │ ├── caloriesElement.cpython-38.pyc │ │ │ │ ├── pulseElement.cpython-37.pyc │ │ │ │ ├── pulseElement.cpython-38.pyc │ │ │ │ ├── stepsElement.cpython-37.pyc │ │ │ │ └── stepsElement.cpython-38.pyc │ │ │ ├── caloriesElement.py │ │ │ ├── distanceElement.py │ │ │ ├── goal2Element.py │ │ │ ├── pulseElement.py │ │ │ ├── starImageElement.py │ │ │ ├── stepsElement.py │ │ │ └── stepsGoalElement.py │ │ ├── activityElement.py │ │ ├── analogDial │ │ │ ├── hoursClockHandElement.py │ │ │ ├── minutesClockHandElement.py │ │ │ └── secondsClockHandElement.py │ │ ├── analogDialElement.py │ │ ├── backgroundElement.py │ │ ├── basic │ │ │ ├── __pycache__ │ │ │ │ ├── compositeElement.cpython-37.pyc │ │ │ │ ├── compositeElement.cpython-38.pyc │ │ │ │ ├── containerElement.cpython-37.pyc │ │ │ │ ├── containerElement.cpython-38.pyc │ │ │ │ ├── element.cpython-37.pyc │ │ │ │ ├── element.cpython-38.pyc │ │ │ │ ├── valueElement.cpython-37.pyc │ │ │ │ └── valueElement.cpython-38.pyc │ │ │ ├── compositeElement.py │ │ │ ├── containerElement.py │ │ │ ├── element.py │ │ │ └── valueElement.py │ │ ├── battery │ │ │ ├── __pycache__ │ │ │ │ ├── batteryNumberElement.cpython-37.pyc │ │ │ │ └── batteryNumberElement.cpython-38.pyc │ │ │ ├── batteryGaugeElement.py │ │ │ ├── batteryNumberElement.py │ │ │ ├── circularBatteryElement.py │ │ │ └── percentElement.py │ │ ├── batteryElement.py │ │ ├── common │ │ │ ├── __pycache__ │ │ │ │ ├── coordinatesElement.cpython-37.pyc │ │ │ │ ├── coordinatesElement.cpython-38.pyc │ │ │ │ ├── imageElement.cpython-37.pyc │ │ │ │ ├── imageElement.cpython-38.pyc │ │ │ │ ├── imageSetElement.cpython-37.pyc │ │ │ │ ├── imageSetElement.cpython-38.pyc │ │ │ │ ├── numberElement.cpython-37.pyc │ │ │ │ ├── numberElement.cpython-38.pyc │ │ │ │ ├── switchElement.cpython-37.pyc │ │ │ │ ├── switchElement.cpython-38.pyc │ │ │ │ ├── twoDigitsElement.cpython-37.pyc │ │ │ │ └── twoDigitsElement.cpython-38.pyc │ │ │ ├── circularProgressElement.py │ │ │ ├── clockHandElement.py │ │ │ ├── coordinatesElement.py │ │ │ ├── imageElement.py │ │ │ ├── imageSetElement.py │ │ │ ├── numberElement.py │ │ │ ├── switchElement.py │ │ │ └── twoDigitsElement.py │ │ ├── date │ │ │ ├── __pycache__ │ │ │ │ ├── monthAndDayElement.cpython-37.pyc │ │ │ │ ├── monthAndDayElement.cpython-38.pyc │ │ │ │ ├── weekDayElement.cpython-37.pyc │ │ │ │ └── weekDayElement.cpython-38.pyc │ │ │ ├── monthAndDay │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── separateMonthAndDayElement.cpython-37.pyc │ │ │ │ │ └── separateMonthAndDayElement.cpython-38.pyc │ │ │ │ ├── oneLineMonthAndDayElement.py │ │ │ │ └── separateMonthAndDayElement.py │ │ │ ├── monthAndDayElement.py │ │ │ ├── weekDayElement.py │ │ │ ├── year │ │ │ │ └── oneLineYearElement.py │ │ │ └── yearElement.py │ │ ├── dateElement.py │ │ ├── daysProgressElement.py │ │ ├── goalProgress │ │ │ ├── circularGoalProgressElement.py │ │ │ └── stepGaugeElement.py │ │ ├── status │ │ │ ├── __pycache__ │ │ │ │ ├── bluetoothElement.cpython-37.pyc │ │ │ │ ├── bluetoothElement.cpython-38.pyc │ │ │ │ ├── doNotDisturbElement.cpython-37.pyc │ │ │ │ └── doNotDisturbElement.cpython-38.pyc │ │ │ ├── alarmElement.py │ │ │ ├── bluetoothElement.py │ │ │ ├── doNotDisturbElement.py │ │ │ └── unlockedElement.py │ │ ├── statusElement.py │ │ ├── stepsProgressElement.py │ │ ├── time │ │ │ ├── amPmElement.py │ │ │ └── pmElement.py │ │ ├── timeElement.py │ │ ├── watchFace.py │ │ ├── weather │ │ │ ├── extendedWeatherElement.py │ │ │ ├── imagesElement.py │ │ │ ├── symbolsElement.py │ │ │ └── temperatureElement.py │ │ └── weatherElement.py │ ├── fileDescriptor.py │ ├── header.py │ ├── parameter.py │ ├── parameterFlags.py │ ├── textAlignment.py │ └── watchState.py │ ├── previewGenerator.py │ ├── reader.py │ ├── utils │ ├── __pycache__ │ │ ├── elementsHelper.cpython-37.pyc │ │ ├── elementsHelper.cpython-38.pyc │ │ ├── parametersConverter.cpython-37.pyc │ │ ├── parametersConverter.cpython-38.pyc │ │ ├── resourcesLoader.cpython-37.pyc │ │ └── resourcesLoader.cpython-38.pyc │ ├── elementsHelper.py │ ├── parametersConverter.py │ └── resourcesLoader.py │ ├── watchFace.py │ └── writer.py ├── respacker.exe ├── resunpacker.exe └── watchfaceEditor ├── .babelrc ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── b.png ├── b4.png ├── c.png ├── gtr.png ├── gts.png ├── gts_grey.png ├── icon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── manifest.json │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── win-icon.ico ├── og-img-2.png ├── og-img.png ├── style.css ├── translation_ic │ ├── chinese.json │ ├── czech.json │ ├── english.json │ ├── russian.json │ └── turkish.json ├── uikit │ ├── uikit.min.css │ └── uikit.min.js ├── wf-editor.png └── ya-img.png ├── defaultimages ├── 200.png ├── 201.png ├── 202.png ├── 203.png ├── 204.png ├── 205.png ├── 206.png ├── 207.png ├── 208.png ├── 209.png ├── 210.png ├── 211.png ├── 212.png ├── 213.png ├── 214.png ├── 215.png ├── 216.png ├── 217.png ├── 218.png ├── 219.png ├── 220.png ├── 221.png ├── 222.png ├── 223.png ├── 224.png ├── 225.png ├── 226.png ├── 227.png ├── 228.png ├── 229.png ├── 230.png ├── 231.png ├── 232.png ├── 233.png ├── 234.png ├── 235.png ├── 236.png ├── 237.png ├── 238.png ├── 239.png ├── 240.png ├── 241.png ├── 242.png ├── 243.png ├── 244.png ├── 245.png ├── 246.png ├── 247.png ├── 248.png ├── 249.png ├── 250.png ├── 251.png ├── 252.png ├── 253.png ├── 254.png ├── 255.png ├── 256.png ├── 257.png ├── 258.png ├── 259.png ├── 260.png ├── 261.png ├── 262.png ├── 263.png ├── 264.png ├── 265.png ├── 266.png ├── 267.png ├── 268.png ├── 269.png ├── 270.png ├── 271.png ├── 272.png ├── 273.png ├── 274.png ├── 275.png ├── 276.png ├── 277.png ├── 278.png ├── 279.png ├── 280.png ├── 281.png ├── 282.png ├── 283.png ├── 284.png ├── 285.png ├── 286.png ├── 287.png ├── 288.png ├── 289.png ├── 290.png ├── 291.png ├── 292.png ├── 293.png ├── 294.png ├── 295.png ├── 296.png ├── 297.png ├── 298.png ├── 299.png ├── 300.png ├── 301.png ├── 302.png ├── 303.png └── defaultimages.zip ├── dev ├── js │ ├── analog.js │ ├── app.js │ ├── devices │ │ ├── band4.js │ │ ├── bip.js │ │ ├── cor.js │ │ ├── devices_list.js │ │ ├── gtr.js │ │ └── gts.js │ ├── editor.js │ ├── images_tab.js │ ├── json_editor.js │ ├── metrika.js │ ├── preview_data.jsx │ ├── utils.js │ ├── view.js │ ├── watchfaceEditor.js │ ├── watchface_react.jsx │ └── wfe_obj.js └── translation │ ├── chinese.json │ ├── czech.json │ ├── dutch.json │ ├── english.json │ ├── german.json │ ├── russian.json │ ├── turkish.json │ └── turkish_old.json ├── dist ├── bundle.js └── bundle.js.map ├── electron ├── devtron_preload.js └── main.js ├── imagecreator.html ├── index.html ├── js ├── FileSaver.min.js ├── canvas-toBlob.js ├── electronApp.js ├── image_creator.js ├── jszip.min.js └── utilit.js ├── package-lock.json ├── package.json └── webpack.config.js /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /assets/autopytoexe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/assets/autopytoexe.jpg -------------------------------------------------------------------------------- /assets/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/assets/editor.png -------------------------------------------------------------------------------- /assets/nodejs-portable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/assets/nodejs-portable.jpg -------------------------------------------------------------------------------- /assets/pack.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/assets/pack.gif -------------------------------------------------------------------------------- /assets/unpack.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/assets/unpack.gif -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/readme.md -------------------------------------------------------------------------------- /src/faces/pack.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/faces/pack.cmd -------------------------------------------------------------------------------- /src/faces/unpack.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/faces/unpack.cmd -------------------------------------------------------------------------------- /src/scripts/pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/scripts/pack.js -------------------------------------------------------------------------------- /src/scripts/unpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/scripts/unpack.js -------------------------------------------------------------------------------- /src/utils/node-portable/nodejs-portable.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/node-portable/nodejs-portable.conf -------------------------------------------------------------------------------- /src/utils/node-portable/nodejs-portable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/node-portable/nodejs-portable.exe -------------------------------------------------------------------------------- /src/utils/pythonSrc/Pipfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/pythonSrc/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/__pycache__/program.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/__pycache__/program.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/__pycache__/program.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/__pycache__/program.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/analysis.md -------------------------------------------------------------------------------- /src/utils/pythonSrc/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/convert.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/header_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/header_1.md -------------------------------------------------------------------------------- /src/utils/pythonSrc/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/main.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/program.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/readme.md -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/__pycache__/extractor.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/__pycache__/extractor.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/__pycache__/extractor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/__pycache__/extractor.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/__pycache__/imageLoader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/__pycache__/imageLoader.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/__pycache__/imageLoader.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/__pycache__/imageLoader.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/__pycache__/reader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/__pycache__/reader.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/__pycache__/reader.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/__pycache__/reader.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/_init_.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/extractor.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/image/__pycache__/color.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/image/__pycache__/color.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/image/__pycache__/color.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/image/__pycache__/color.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/image/__pycache__/reader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/image/__pycache__/reader.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/image/__pycache__/reader.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/image/__pycache__/reader.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/image/_init_.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/image/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/image/color.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/image/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/image/reader.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/image/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/image/writer.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/imageLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/imageLoader.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/models/__pycache__/image.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/models/__pycache__/image.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/models/__pycache__/image.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/models/__pycache__/image.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/models/_init_.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/models/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/models/image.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/reader.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/resources/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/resources/writer.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/scripts/test_extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/scripts/test_extract.sh -------------------------------------------------------------------------------- /src/utils/pythonSrc/scripts/test_extract_packed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/scripts/test_extract_packed.sh -------------------------------------------------------------------------------- /src/utils/pythonSrc/scripts/test_repack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/scripts/test_repack.sh -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/__pycache__/previewGenerator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/__pycache__/previewGenerator.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/__pycache__/previewGenerator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/__pycache__/previewGenerator.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/__pycache__/reader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/__pycache__/reader.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/__pycache__/reader.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/__pycache__/reader.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/__pycache__/watchFace.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/__pycache__/watchFace.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/__pycache__/watchFace.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/__pycache__/watchFace.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/__pycache__/writer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/__pycache__/writer.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/__pycache__/writer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/__pycache__/writer.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/_init_.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/attributes/__pycache__/parameterIdAttribute.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/attributes/__pycache__/parameterIdAttribute.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/attributes/__pycache__/parameterIdAttribute.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/attributes/__pycache__/parameterIdAttribute.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/attributes/parameterIdAttribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/attributes/parameterIdAttribute.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/config.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/activity.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/activity.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/activity.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/activity.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/analogDialFace.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/analogDialFace.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/analogDialFace.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/analogDialFace.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/background.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/background.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/background.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/background.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/battery.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/battery.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/battery.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/battery.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/date.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/date.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/date.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/date.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/daysProgress.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/daysProgress.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/daysProgress.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/daysProgress.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/status.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/status.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/status.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/status.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/stepsProgress.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/stepsProgress.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/stepsProgress.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/stepsProgress.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/time.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/time.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/time.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/time.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/unknownType14.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/unknownType14.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/unknownType14.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/unknownType14.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/weather.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/weather.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/__pycache__/weather.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/__pycache__/weather.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/activity.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/activityElements/__pycache__/distance.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/activityElements/__pycache__/distance.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/activityElements/__pycache__/distance.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/activityElements/__pycache__/distance.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/activityElements/__pycache__/formattedNumber.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/activityElements/__pycache__/formattedNumber.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/activityElements/__pycache__/formattedNumber.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/activityElements/__pycache__/formattedNumber.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/activityElements/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/activityElements/distance.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/activityElements/formattedNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/activityElements/formattedNumber.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/analogDialFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/analogDialFace.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/analogDialFaceElements/__pycache__/clockHand.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/analogDialFaceElements/__pycache__/clockHand.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/analogDialFaceElements/__pycache__/clockHand.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/analogDialFaceElements/__pycache__/clockHand.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/analogDialFaceElements/clockHand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/analogDialFaceElements/clockHand.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/background.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/circleScale.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/circleScale.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/circleScale.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/circleScale.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/coordinates.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/coordinates.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/coordinates.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/coordinates.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/image.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/image.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/image.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/image.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/imageSet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/imageSet.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/imageSet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/imageSet.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/number.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/number.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/number.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/number.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/sector.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/sector.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/sector.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/sector.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/unknownType.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/unknownType.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/unknownType.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/unknownType.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/unknownType14d6.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/unknownType14d6.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/unknownType14d6.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/__pycache__/unknownType14d6.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/circleScale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/circleScale.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/coordinates.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/image.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/imageSet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/imageSet.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/number.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/sector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/sector.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/unknownType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/unknownType.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/basicElements/unknownType14d6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/basicElements/unknownType14d6.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/battery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/battery.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/batteryElements/__pycache__/iconSet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/batteryElements/__pycache__/iconSet.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/batteryElements/__pycache__/iconSet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/batteryElements/__pycache__/iconSet.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/batteryElements/__pycache__/unknownType4.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/batteryElements/__pycache__/unknownType4.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/batteryElements/__pycache__/unknownType4.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/batteryElements/__pycache__/unknownType4.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/batteryElements/iconSet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/batteryElements/iconSet.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/batteryElements/unknownType4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/batteryElements/unknownType4.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/date.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/dateUnknown3.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/dateUnknown3.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/dateUnknown3.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/dateUnknown3.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/monthAndDay.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/monthAndDay.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/monthAndDay.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/monthAndDay.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/oneLineMonthAndDay.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/oneLineMonthAndDay.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/oneLineMonthAndDay.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/oneLineMonthAndDay.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/oneLineYear.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/oneLineYear.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/oneLineYear.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/oneLineYear.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/separateMonthAndDay.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/separateMonthAndDay.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/separateMonthAndDay.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/separateMonthAndDay.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/year.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/year.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/year.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/__pycache__/year.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/dateUnknown3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/dateUnknown3.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/monthAndDay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/monthAndDay.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/oneLineMonthAndDay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/oneLineMonthAndDay.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/oneLineYear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/oneLineYear.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/separateMonthAndDay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/separateMonthAndDay.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/dateElements/year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/dateElements/year.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/daysProgress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/daysProgress.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/status.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/statusElements/__pycache__/switch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/statusElements/__pycache__/switch.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/statusElements/__pycache__/switch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/statusElements/__pycache__/switch.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/statusElements/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/statusElements/switch.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/stepsProgress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/stepsProgress.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/time.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/timeElements/__pycache__/amPm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/timeElements/__pycache__/amPm.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/timeElements/__pycache__/amPm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/timeElements/__pycache__/amPm.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/timeElements/__pycache__/pm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/timeElements/__pycache__/pm.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/timeElements/__pycache__/pm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/timeElements/__pycache__/pm.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/timeElements/__pycache__/twoDigits.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/timeElements/__pycache__/twoDigits.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/timeElements/__pycache__/twoDigits.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/timeElements/__pycache__/twoDigits.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/timeElements/amPm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/timeElements/amPm.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/timeElements/pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/timeElements/pm.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/timeElements/twoDigits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/timeElements/twoDigits.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/unknownType14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/unknownType14.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weather.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/icon.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/icon.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/icon.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/icon.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/separate.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/separate.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/separate.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/separate.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/symbols.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/symbols.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/symbols.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/symbols.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/temperature.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/temperature.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/temperature.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/temperature.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/today.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/today.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/today.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/__pycache__/today.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/icon.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/separate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/separate.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/symbols.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/temperature.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/elements/weatherElements/today.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/elements/weatherElements/today.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/helpers/__pycache__/drawerHelper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/helpers/__pycache__/drawerHelper.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/helpers/__pycache__/drawerHelper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/helpers/__pycache__/drawerHelper.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/helpers/drawerHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/helpers/drawerHelper.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/color.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/color.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/color.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/color.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/fileDescriptor.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/fileDescriptor.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/fileDescriptor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/fileDescriptor.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/header.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/header.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/header.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/header.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/parameter.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/parameter.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/parameter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/parameter.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/parameterFlags.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/parameterFlags.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/parameterFlags.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/parameterFlags.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/textAlignment.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/textAlignment.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/textAlignment.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/textAlignment.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/watchState.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/watchState.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/__pycache__/watchState.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/__pycache__/watchState.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/color.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/activityElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/activityElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/activityElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/activityElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/backgroundElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/backgroundElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/backgroundElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/backgroundElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/batteryElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/batteryElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/batteryElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/batteryElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/dateElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/dateElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/dateElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/dateElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/statusElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/statusElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/statusElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/statusElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/timeElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/timeElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/timeElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/timeElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/watchFace.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/watchFace.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/watchFace.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/__pycache__/watchFace.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/_init_.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activity/__pycache__/caloriesElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activity/__pycache__/caloriesElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activity/__pycache__/caloriesElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activity/__pycache__/caloriesElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activity/__pycache__/pulseElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activity/__pycache__/pulseElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activity/__pycache__/pulseElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activity/__pycache__/pulseElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activity/__pycache__/stepsElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activity/__pycache__/stepsElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activity/__pycache__/stepsElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activity/__pycache__/stepsElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activity/caloriesElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activity/caloriesElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activity/distanceElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activity/distanceElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activity/goal2Element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activity/goal2Element.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activity/pulseElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activity/pulseElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activity/starImageElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activity/starImageElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activity/stepsElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activity/stepsElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activity/stepsGoalElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activity/stepsGoalElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/activityElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/activityElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/analogDial/hoursClockHandElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/analogDial/hoursClockHandElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/analogDial/minutesClockHandElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/analogDial/minutesClockHandElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/analogDial/secondsClockHandElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/analogDial/secondsClockHandElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/analogDialElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/analogDialElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/backgroundElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/backgroundElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/compositeElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/compositeElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/compositeElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/compositeElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/containerElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/containerElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/containerElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/containerElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/element.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/element.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/element.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/element.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/valueElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/valueElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/valueElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/basic/__pycache__/valueElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/basic/compositeElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/basic/compositeElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/basic/containerElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/basic/containerElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/basic/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/basic/element.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/basic/valueElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/basic/valueElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/battery/__pycache__/batteryNumberElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/battery/__pycache__/batteryNumberElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/battery/__pycache__/batteryNumberElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/battery/__pycache__/batteryNumberElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/battery/batteryGaugeElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/battery/batteryGaugeElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/battery/batteryNumberElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/battery/batteryNumberElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/battery/circularBatteryElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/battery/circularBatteryElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/battery/percentElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/battery/percentElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/batteryElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/batteryElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/coordinatesElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/coordinatesElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/coordinatesElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/coordinatesElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/imageElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/imageElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/imageElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/imageElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/imageSetElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/imageSetElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/imageSetElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/imageSetElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/numberElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/numberElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/numberElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/numberElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/switchElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/switchElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/switchElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/switchElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/twoDigitsElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/twoDigitsElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/twoDigitsElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/__pycache__/twoDigitsElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/circularProgressElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/circularProgressElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/clockHandElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/clockHandElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/coordinatesElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/coordinatesElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/imageElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/imageElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/imageSetElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/imageSetElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/numberElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/numberElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/switchElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/switchElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/common/twoDigitsElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/common/twoDigitsElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/date/__pycache__/monthAndDayElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/date/__pycache__/monthAndDayElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/date/__pycache__/monthAndDayElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/date/__pycache__/monthAndDayElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/date/__pycache__/weekDayElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/date/__pycache__/weekDayElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/date/__pycache__/weekDayElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/date/__pycache__/weekDayElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/date/monthAndDay/__pycache__/separateMonthAndDayElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/date/monthAndDay/__pycache__/separateMonthAndDayElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/date/monthAndDay/__pycache__/separateMonthAndDayElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/date/monthAndDay/__pycache__/separateMonthAndDayElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/date/monthAndDay/oneLineMonthAndDayElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/date/monthAndDay/oneLineMonthAndDayElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/date/monthAndDay/separateMonthAndDayElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/date/monthAndDay/separateMonthAndDayElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/date/monthAndDayElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/date/monthAndDayElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/date/weekDayElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/date/weekDayElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/date/year/oneLineYearElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/date/year/oneLineYearElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/date/yearElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/date/yearElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/dateElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/dateElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/daysProgressElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/daysProgressElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/goalProgress/circularGoalProgressElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/goalProgress/circularGoalProgressElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/goalProgress/stepGaugeElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/goalProgress/stepGaugeElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/status/__pycache__/bluetoothElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/status/__pycache__/bluetoothElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/status/__pycache__/bluetoothElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/status/__pycache__/bluetoothElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/status/__pycache__/doNotDisturbElement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/status/__pycache__/doNotDisturbElement.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/status/__pycache__/doNotDisturbElement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/status/__pycache__/doNotDisturbElement.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/status/alarmElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/status/alarmElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/status/bluetoothElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/status/bluetoothElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/status/doNotDisturbElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/status/doNotDisturbElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/status/unlockedElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/status/unlockedElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/statusElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/statusElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/stepsProgressElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/stepsProgressElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/time/amPmElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/time/amPmElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/time/pmElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/time/pmElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/timeElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/timeElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/watchFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/watchFace.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/weather/extendedWeatherElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/weather/extendedWeatherElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/weather/imagesElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/weather/imagesElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/weather/symbolsElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/weather/symbolsElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/weather/temperatureElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/weather/temperatureElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/elements/weatherElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/elements/weatherElement.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/fileDescriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/fileDescriptor.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/header.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/parameter.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/parameterFlags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/parameterFlags.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/textAlignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/textAlignment.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/models/watchState.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/models/watchState.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/previewGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/previewGenerator.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/reader.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/utils/__pycache__/elementsHelper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/utils/__pycache__/elementsHelper.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/utils/__pycache__/elementsHelper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/utils/__pycache__/elementsHelper.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/utils/__pycache__/parametersConverter.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/utils/__pycache__/parametersConverter.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/utils/__pycache__/parametersConverter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/utils/__pycache__/parametersConverter.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/utils/__pycache__/resourcesLoader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/utils/__pycache__/resourcesLoader.cpython-37.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/utils/__pycache__/resourcesLoader.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/utils/__pycache__/resourcesLoader.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/utils/elementsHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/utils/elementsHelper.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/utils/parametersConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/utils/parametersConverter.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/utils/resourcesLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/utils/resourcesLoader.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/watchFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/watchFace.py -------------------------------------------------------------------------------- /src/utils/pythonSrc/watchFaceParser/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/pythonSrc/watchFaceParser/writer.py -------------------------------------------------------------------------------- /src/utils/respacker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/respacker.exe -------------------------------------------------------------------------------- /src/utils/resunpacker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/resunpacker.exe -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/.babelrc -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/.eslintrc.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/.gitignore: -------------------------------------------------------------------------------- 1 | amazfitBipTools 2 | node_modules 3 | watchfaceeditor-win32-x64 4 | -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/LICENSE -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/README.md -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/b.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/b4.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/c.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/gtr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/gtr.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/gts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/gts.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/gts_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/gts_grey.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/icon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/icon/android-chrome-192x192.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/icon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/icon/android-chrome-512x512.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/icon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/icon/apple-touch-icon.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/icon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/icon/browserconfig.xml -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/icon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/icon/favicon-16x16.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/icon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/icon/favicon-32x32.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/icon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/icon/manifest.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/icon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/icon/mstile-150x150.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/icon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/icon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/icon/win-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/icon/win-icon.ico -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/og-img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/og-img-2.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/og-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/og-img.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/style.css -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/translation_ic/chinese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/translation_ic/chinese.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/translation_ic/czech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/translation_ic/czech.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/translation_ic/english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/translation_ic/english.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/translation_ic/russian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/translation_ic/russian.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/translation_ic/turkish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/translation_ic/turkish.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/uikit/uikit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/uikit/uikit.min.css -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/uikit/uikit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/uikit/uikit.min.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/wf-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/wf-editor.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/assets/ya-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/assets/ya-img.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/200.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/201.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/202.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/203.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/204.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/205.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/206.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/207.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/208.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/209.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/209.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/210.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/211.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/212.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/213.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/214.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/215.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/216.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/217.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/217.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/218.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/219.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/220.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/221.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/222.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/223.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/224.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/225.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/226.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/227.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/228.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/229.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/230.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/231.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/232.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/232.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/233.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/234.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/235.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/236.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/237.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/238.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/238.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/239.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/240.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/241.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/241.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/242.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/243.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/243.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/244.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/245.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/245.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/246.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/247.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/248.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/249.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/250.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/251.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/252.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/253.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/253.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/254.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/255.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/256.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/257.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/258.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/259.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/259.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/260.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/260.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/261.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/261.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/262.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/262.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/263.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/264.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/265.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/265.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/266.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/266.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/267.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/267.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/268.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/268.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/269.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/269.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/270.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/271.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/271.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/272.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/273.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/273.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/274.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/274.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/275.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/275.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/276.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/276.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/277.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/277.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/278.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/278.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/279.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/279.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/280.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/281.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/281.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/282.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/282.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/283.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/283.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/284.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/284.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/285.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/285.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/286.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/286.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/287.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/287.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/288.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/289.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/289.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/290.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/290.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/291.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/291.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/292.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/292.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/293.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/293.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/294.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/294.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/295.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/295.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/296.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/297.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/297.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/298.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/298.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/299.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/299.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/300.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/301.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/302.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/303.png -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/defaultimages/defaultimages.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/defaultimages/defaultimages.zip -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/analog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/analog.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/app.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/devices/band4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/devices/band4.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/devices/bip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/devices/bip.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/devices/cor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/devices/cor.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/devices/devices_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/devices/devices_list.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/devices/gtr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/devices/gtr.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/devices/gts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/devices/gts.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/editor.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/images_tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/images_tab.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/json_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/json_editor.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/metrika.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/metrika.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/preview_data.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/preview_data.jsx -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/utils.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/view.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/watchfaceEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/watchfaceEditor.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/watchface_react.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/watchface_react.jsx -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/js/wfe_obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/js/wfe_obj.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/translation/chinese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/translation/chinese.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/translation/czech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/translation/czech.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/translation/dutch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/translation/dutch.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/translation/english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/translation/english.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/translation/german.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/translation/german.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/translation/russian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/translation/russian.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/translation/turkish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/translation/turkish.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dev/translation/turkish_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dev/translation/turkish_old.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dist/bundle.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/dist/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/dist/bundle.js.map -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/electron/devtron_preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/electron/devtron_preload.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/electron/main.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/imagecreator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/imagecreator.html -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/index.html -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/js/FileSaver.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/js/FileSaver.min.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/js/canvas-toBlob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/js/canvas-toBlob.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/js/electronApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/js/electronApp.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/js/image_creator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/js/image_creator.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/js/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/js/jszip.min.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/js/utilit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/js/utilit.js -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/package-lock.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/package.json -------------------------------------------------------------------------------- /src/utils/watchfaceEditor/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chm-dev/GTS-watchface-bundle/HEAD/src/utils/watchfaceEditor/webpack.config.js --------------------------------------------------------------------------------